math/big.divisor.ndigits (field)
8 uses
math/big (current package)
natconv.go#L392: h := len(s) - table[index].ndigits
natconv.go#L445: ndigits int // digit length of divisor in terms of output base digits
natconv.go#L481: if table[k-1].ndigits == 0 {
natconv.go#L485: if table[i].ndigits == 0 {
natconv.go#L488: table[0].ndigits = ndigits * leafSize
natconv.go#L491: table[i].ndigits = 2 * table[i-1].ndigits
natconv.go#L498: table[i].ndigits++
The pages are generated with Golds v0.6.7. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @Go100and1 (reachable from the left QR code) to get the latest news of Golds. |